home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / text / hyper / hsc_source.lha / hsc / source / hsclib / uri.h < prev   
C/C++ Source or Header  |  1996-12-04  |  845b  |  39 lines

  1. /*
  2.  * uri.h
  3.  *
  4.  * functions for parsing URIs
  5.  *
  6.  */
  7.  
  8. #ifndef HSCLIB_URI_H
  9. #define HSCLIB_URI_H
  10.  
  11. #define ABSURI_ID ":"
  12.  
  13. typedef enum
  14. {
  15.     URI_abs,                    /* starts with ":" */
  16.     URI_ext,                    /* contains ":" before first "/" */
  17.     URI_rel,                    /* no ":" */
  18.     URI_relserv                 /* starts with "/"; server relative */
  19. }
  20. URIKIND;                        /* uri kinds */
  21.  
  22. /*
  23.  * global funcs
  24.  */
  25. #ifndef NOEXTERN_HSCLIB_URI_H
  26.  
  27. extern VOID conv_path2uri(EXPSTR * dest, STRPTR path);
  28. extern VOID conv_uri2path(EXPSTR * dest, STRPTR uri, BOOL weenix);
  29.  
  30. extern VOID conv_hscuri2file(HSCPRC * hp, EXPSTR * dest_fname, STRPTR uri);
  31.  
  32. extern VOID parse_uri(HSCPRC * hp, EXPSTR * dest_uri, STRPTR uri);
  33. extern URIKIND uri_kind(STRPTR uri);
  34.  
  35. #endif /* NOEXTERN_HSCLIB_URI_H */
  36.  
  37. #endif /* HSCLIB_URI_H */
  38.  
  39.